From: Brian Fox Date: Wed, 22 Sep 1993 18:32:09 +0000 (+0000) Subject: Add declaration for atof if not predefined. X-Git-Tag: archive/raspbian/1%29.2+1-2+rpi1^2~5^2~94280 X-Git-Url: https://dgit.raspbian.org/%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:///%22http:/www.example.com/cgi/%22https:/www.github.com/%22bookmarks:/?a=commitdiff_plain;h=024ec58f11e9bb842a801e9f812c6dd06efdb9ed;p=emacs.git Add declaration for atof if not predefined. --- diff --git a/src/data.c b/src/data.c index a3d2f46013b..9b42d83d09b 100644 --- a/src/data.c +++ b/src/data.c @@ -37,6 +37,10 @@ the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA. */ #include #endif /* LISP_FLOAT_TYPE */ +#if !defined (atof) +extern double atof (); +#endif /* !atof */ + Lisp_Object Qnil, Qt, Qquote, Qlambda, Qsubr, Qunbound; Lisp_Object Qerror_conditions, Qerror_message, Qtop_level; Lisp_Object Qerror, Qquit, Qwrong_type_argument, Qargs_out_of_range;